home *** CD-ROM | disk | FTP | other *** search
/ CD ROM Paradise Collection 4 / CD ROM Paradise Collection 4 1995 Nov.iso / system / ffg202.zip / DEMO_BAT.ZIP / DEMO.BAT < prev    next >
DOS Batch File  |  1995-04-01  |  1KB  |  29 lines

  1. @echo off
  2. cls
  3. echo.
  4. echo                  File Finder/Grouper Demonstrations
  5. echo.
  6. echo Each of the following demonstrations may involve lengthy disk searches.
  7. echo At any time during the search, you can interrupt it by pressing the [ESC]
  8. echo key.  Also, the entire demo can be terminated by pressing [CONTROL]-C (^C)
  9. echo at one of the pause points.
  10. echo.
  11. echo The following demos are all in individual batch files which you can later
  12. echo go examine or customize to your own needs.  Before and after each demo the
  13. echo name of the associated batch file will be displayed in brackets [].
  14.   call presskey
  15.   call rundemos do
  16. :: Files w/in last 10 minutes
  17.   call do recent *: 10
  18. :: 1992 and 1980 files:
  19.   call do year-nn 92
  20.   call do year-nn 80
  21. :: Files before/after specified dates:
  22.   call do since  5/1/93
  23.   call do before 12/31/80
  24. :: 1992 Tax files:
  25.   call do taxyearn 92
  26. cls
  27. echo This is the end of the demonstration.  The demos can be run individually
  28. echo by running the appropriate batch file.
  29.